Clover coverage report - Prayer Portlets - 0.1-rc4-SNAPSHOT
Coverage timestamp: Thu Aug 19 2004 18:34:34 EDT
file stats: LOC: 16   Methods: 0
NCLOC: 9   Classes: 1
30 day Evaluation Version distributed via the Maven Jar Repository. Clover is not free. You have 30 days to evaluate it. Please visit http://www.thecortex.net/clover to obtain a licensed version of Clover
 
 Source file Conditionals Statements Methods TOTAL
PortalUserManager.java - - - -
coverage
 1   
 package org.marketchangers;
 2   
 
 3   
 import java.util.List;
 4   
 
 5   
 
 6   
 /**
 7   
  * @author <a href="mailto:mtodd@wc-group.com">Matthew Todd</a>
 8   
  */
 9   
 public interface PortalUserManager {
 10   
     public boolean addRole(String user, String role);
 11   
     public boolean isUserInRole(String user, String role);
 12   
     public boolean removeRole(String user, String role);
 13   
     public PortalUser lookupUserById(String userid);
 14   
     public List lookupUsersByRole(String string);
 15   
 }
 16